runtime.m.g0 (field)

42 uses

	runtime (current package)
		cgocall.go#L345: 		sched := &mp.g0.sched
		cgocheck.go#L42: 	if gp == gp.m.g0 || gp == gp.m.gsignal {
		debug.go#L89: 	if gp == gp.m.g0 || gp == gp.m.gsignal {
		debug.go#L108: 	if gp == gp.m.g0 || gp == gp.m.gsignal {
		lock_futex.go#L150: 	if gp != gp.m.g0 {
		lock_futex.go#L221: 	if gp != gp.m.g0 && gp.m.preemptoff != "" {
		lock_futex.go#L232: 	if gp == gp.m.g0 {
		mgc.go#L606: 	if gp := getg(); gp == mp.g0 || mp.locks > 1 || mp.preemptoff != "" {
		mgcmark.go#L409: 	if getg() == gp.m.g0 {
		mgcsweep.go#L467: 	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
		mgcsweep.go#L506: 	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
		os_linux.go#L167: 	stk := unsafe.Pointer(mp.g0.stack.hi)
		os_linux.go#L172: 		print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " clone=", abi.FuncPCABI0(clone), " id=", mp.id, " ostk=", &mp, "\n")
		os_linux.go#L180: 		r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
		panic.go#L1306: 		if gp != gp.m.g0 {
		proc.go#L149: 	mp.g0.racectx = 0
		proc.go#L827: 	if gp != gp.m.g0 {
		proc.go#L1576: 	if gp != gp.m.g0 {
		proc.go#L1924: 					stackfree(freem.g0.stack)
		proc.go#L1940: 		mp.g0 = malg(-1)
		proc.go#L1942: 		mp.g0 = malg(16384 * sys.StackGuardMultiplier)
		proc.go#L1944: 	mp.g0.m = mp
		proc.go#L2045: 	setg(mp.g0)
		proc.go#L2234: 	if g.m.g0 != g {
		proc.go#L2440: 		ts.g.set(mp.g0)
		proc.go#L3914: 			gogo(&mp.g0.sched)
		proc.go#L3935: 	if gp == gp.m.g0 || gp == gp.m.gsignal {
		proc.go#L5775: 	if gp == nil || gp == mp.g0 {
		runtime2.go#L534: 	g0      *g     // goroutine with scheduling stack
		signal_unix.go#L569: 	if sp >= mp.g0.stack.lo && sp < mp.g0.stack.hi {
		signal_unix.go#L580: 		st := stackt{ss_size: mp.g0.stack.hi - mp.g0.stack.lo}
		signal_unix.go#L581: 		setSignalstackSP(&st, mp.g0.stack.lo)
		signal_unix.go#L636: 	delayedSignal := *cgo_yield != nil && mp != nil && gsignal.stack == mp.g0.stack
		signal_unix.go#L791: 	if mp.incgo && gp == mp.g0 && mp.curg != nil {
		signal_unix.go#L1044: 	print("mp.g0 stack [", hex(mp.g0.stack.lo), " ", hex(mp.g0.stack.hi), "], sp=", hex(sp), "\n")
		stack.go#L341: 	if thisg != thisg.m.g0 {
		stack.go#L973: 		print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
		stack.go#L1055: 		if gp == thisg.m.g0 {
		traceback.go#L290: 		if u.flags&unwindJumpStack != 0 && gp == gp.m.g0 && gp.m.curg != nil && gp.m.curg.m == gp.m {